Files
There is no new repo for this assignment! Just continue developing in the repo you created for the previous assignment.
Compiling and running .hmc files
This compilation script will compile .hmc files. A few notes about this script:
- The script is configured for MacOS running on an ARM processor. You can / should modify for your own needs and compiler configurations!
- The script expects source files to be in a directory called
examples. If you use the script add theexamplesdirectory (and the script itself!) to your repo. - The script places compiled binaries, and their x86-64 sources, in a directory called
bin. If you use the script, add thebindirectory to your.gitignore. - To run the script, make sure it is executable (
chmod +x compile.sh). Then, run the command./compile.sh examples/myfile.hmc, using the name of your source file in place ofmyfile.hmc.